home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / insure2 / formload.frm < prev    next >
Text File  |  1995-05-02  |  3KB  |  99 lines

  1. VERSION 2.00
  2. Begin Form FormLoad 
  3.    AutoRedraw      =   -1  'True
  4.    BackColor       =   &H00404040&
  5.    BorderStyle     =   0  'None
  6.    Caption         =   "Insurance Company of America"
  7.    ClientHeight    =   5670
  8.    ClientLeft      =   570
  9.    ClientTop       =   1485
  10.    ClientWidth     =   8580
  11.    ControlBox      =   0   'False
  12.    Height          =   6075
  13.    Icon            =   FORMLOAD.FRX:0000
  14.    Left            =   510
  15.    LinkMode        =   1  'Source
  16.    LinkTopic       =   "Form1"
  17.    MaxButton       =   0   'False
  18.    MinButton       =   0   'False
  19.    ScaleHeight     =   5670
  20.    ScaleWidth      =   8580
  21.    Top             =   1140
  22.    Width           =   8700
  23.    Begin Timer Timer1 
  24.       Left            =   3000
  25.       Top             =   2520
  26.    End
  27.    Begin PictureBox Picture1 
  28.       AutoRedraw      =   -1  'True
  29.       AutoSize        =   -1  'True
  30.       Height          =   3630
  31.       Left            =   3480
  32.       Picture         =   FORMLOAD.FRX:0302
  33.       ScaleHeight     =   3600
  34.       ScaleWidth      =   2880
  35.       TabIndex        =   0
  36.       Top             =   1680
  37.       Width           =   2910
  38.    End
  39.    Begin Label Label1 
  40.       Alignment       =   2  'Center
  41.       BackColor       =   &H00C0C0C0&
  42.       BorderStyle     =   1  'Fixed Single
  43.       Caption         =   "Insurance prototype application for Microsoft Windows for Pens"
  44.       FontBold        =   -1  'True
  45.       FontItalic      =   0   'False
  46.       FontName        =   "MS Sans Serif"
  47.       FontSize        =   18
  48.       FontStrikethru  =   0   'False
  49.       FontUnderline   =   0   'False
  50.       Height          =   855
  51.       Index           =   1
  52.       Left            =   1440
  53.       TabIndex        =   2
  54.       Top             =   5520
  55.       Width           =   6735
  56.    End
  57.    Begin Label Label1 
  58.       Alignment       =   2  'Center
  59.       BackColor       =   &H00C0C0C0&
  60.       BorderStyle     =   1  'Fixed Single
  61.       Caption         =   "Life Insurance "
  62.       FontBold        =   -1  'True
  63.       FontItalic      =   0   'False
  64.       FontName        =   "MS Sans Serif"
  65.       FontSize        =   48
  66.       FontStrikethru  =   0   'False
  67.       FontUnderline   =   0   'False
  68.       Height          =   1095
  69.       Index           =   0
  70.       Left            =   1560
  71.       TabIndex        =   1
  72.       Top             =   360
  73.       Width           =   6735
  74.    End
  75. End
  76.  
  77. Sub Form_Load ()
  78. screen.MousePointer = 11
  79. formload.WindowState = 2
  80. formload.Show
  81. x% = DoEvents()
  82. Load form1
  83. Load form2
  84. Load form3
  85. Load report
  86. form1.Show
  87.  
  88. Rem timer1.interval = 30
  89. Rem timer1.enabled = -1
  90. screen.MousePointer = 0
  91. End Sub
  92.  
  93. Sub Timer1_Timer ()
  94. form1.Show
  95. timer1.Enabled = 0
  96. Unload formload
  97. End Sub
  98.  
  99.